POST
/
guild
/
ledger
Create Ledger Transaction
curl --request POST \
  --url https://api.multex.tech/guild/ledger \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "robloxId": "<string>",
  "name": "<string>",
  "quantity": 2,
  "amount": 123,
  "source": "<string>",
  "deposit": true,
  "withdrawal": true
}'
{
  "success": true,
  "message": "Transaction Posted (deposit)",
  "type": "deposit"
}

Required Scopes

guild:write

Rate Limit

10 requests per second

Authorizations

x-api-key
string
header
required

API key for accessing protected guild endpoints

Body

application/json

Response

200
application/json

Transaction created successfully

The response is of type object.